home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / POSIX / ThinkCPosix / sys⁄times.h < prev    next >
Encoding:
Text File  |  1992-09-11  |  130 b   |  11 lines  |  [TEXT/KAHL]

  1. /* $Id: $ */
  2.  
  3. #pragma once
  4.  
  5. struct tms {
  6.   clock_t tms_utime;
  7.   clock_t tms_stime;
  8.   clock_t tms_cutime;
  9.   clock_t tms_cstime;
  10. };
  11.